home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Interfaces / AIncludes / Packages.a < prev    next >
Encoding:
Text File  |  1996-01-24  |  1.3 KB  |  57 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Packages.a
  3. ;
  4. ;    Contains:    Package Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Package:    Universal Interfaces 2.2 in “MPW” on ETO #20
  8. ;
  9. ;    Copyright:    © 1984-1995 by Apple Computer, Inc.
  10. ;                All rights reserved.
  11. ;
  12. ;    Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13. ;                stack.  Include the file and version information (from above)
  14. ;                in the problem description and send to:
  15. ;                    Internet:    apple.bugs@applelink.apple.com
  16. ;                    AppleLink:    APPLE.BUGS
  17. ;
  18. ;
  19.  
  20.     IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
  21. __PACKAGES__ SET 1
  22.  
  23.  
  24.     IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
  25.     include 'Types.a'
  26.     ENDIF
  27. ;        include 'ConditionalMacros.a'                                ;
  28.  
  29. listMgr                            EQU        0                    ; list manager 
  30. dskInit                            EQU        2                    ; Disk Initializaton 
  31. stdFile                            EQU        3                    ; Standard File 
  32. flPoint                            EQU        4                    ; Floating-Point Arithmetic 
  33. trFunc                            EQU        5                    ; Transcendental Functions 
  34. intUtil                            EQU        6                    ; International Utilities 
  35. bdConv                            EQU        7                    ; Binary/Decimal Conversion 
  36. editionMgr                        EQU        11                    ; Edition Manager 
  37.  
  38. ;
  39. ; pascal void InitPack(short packID)
  40. ;
  41.     IF ¬ GENERATINGCFM THEN
  42.         _InitPack:    OPWORD    $A9E5
  43.     ELSE
  44.         IMPORT_CFM_FUNCTION    InitPack
  45.     ENDIF
  46.  
  47. ;
  48. ; pascal void InitAllPacks(void)
  49. ;
  50.     IF ¬ GENERATINGCFM THEN
  51.         _InitAllPacks:    OPWORD    $A9E6
  52.     ELSE
  53.         IMPORT_CFM_FUNCTION    InitAllPacks
  54.     ENDIF
  55.  
  56.     ENDIF ; __PACKAGES__
  57.